home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
crypt
/
lha211
/
typedef.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-09-30
|
395b
|
11 lines
/***********************************************************
typedef.h
***********************************************************/
#ifndef _TYPEDEF_H_
#define _TYPEDEF_H_
typedef unsigned char uchar; /* 8 bits */
typedef unsigned int uint; /* 16 - 32 bits or more */
typedef unsigned short ushort; /* 16 bits */
typedef unsigned long ulong; /* 32 bits or more */
#endif